home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Agent Central Host Computer
/
Agent - Central Host Computer.iso
/
_SETUP.1
/
bus.sql
< prev
next >
Wrap
Text File
|
2000-05-12
|
783b
|
21 lines
/* RCSVER $Id: bus.sql,v 1.5 1999-04-07 18:05:33-05 randy CURRENT $ */
/* *************************************************************************
* Copyright (C) 1998, Agent Systems, Inc. All Rights Reserved.
*
* Name: bus.sql
* Date: 12/28/1998
* memo: Randy Wood
* Description: Create the bus table. This table defines all the buses
* of a transit property.
* Changes:
************************************************************************* */
CREATE TABLE bus
(
glid NUMBER(38), /* Internal sw ID of bus */
bus_id NUMBER(38), /* User-defined ID of bus */
garageid NUMBER(38), /* Internal sw ID of primary garage */
descr VARCHAR2(40), /* Description of bus */
CONSTRAINT unq_bus UNIQUE (bus_id),
CONSTRAINT pk_bus PRIMARY KEY (glid)
);